home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 2
/
Nebula Two.iso
/
SourceCode
/
Random2.0
/
Source
/
RandomEngine.h
< prev
next >
Wrap
Text File
|
1995-06-12
|
475b
|
40 lines
//
// RandomEngine
//
// An abstract Objective-C class for random number
// generator engines.
//
// Copyright (C) 1992 Contemporary Design Studios. All rights reserved.
//
#import <objc/Object.h>
//
// Types:
//
typedef unsigned long ulong;
typedef unsigned short ushort;
typedef unsigned char uchar;
@interface RandomEngine : Object
{
}
+ (int)unit; // Return the unit of generation (# of BYTES).
- makeRandom:(uchar *)storage;
@end
//
// End of file.
//